home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Alde ADA 1: #1
/
CCCC 8804 Volume 1 Number 1 - Alde.iso
/
C
/
MISC
/
LIB
/
DLIBSSRC.ARC
/
ABORT.C
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1987-07-14
|
243 b
|
13 lines
#include <stdio.h>
void abort()
/*
* Prints the message "Abnormal program termination" to stderr and
* calls _exit() with a status code of 3.
*/
{
fputs("Abnormal program termination\n", stderr);
fflush(stderr);
_exit(3);
}